home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / os2 / zoc110.arj / ZOC / SCRIPT / SAMPLES / 5_MODEM < prev    next >
Text File  |  1993-10-07  |  497b  |  26 lines

  1. ////////////////////////////////////////////////////////
  2. // FUN WITH YOUR MODEM 
  3. ////////////////////////////////////////////////////////
  4.  
  5. // send something to the modem
  6. send "AT^M"
  7.  
  8. // wait for answer
  9. waitline
  10. delay 
  11. writeln "Your modem said %lastline%"
  12.  
  13. // send something more
  14. send "AT $$$^M"
  15.  
  16. // wait 5 secs. for reply
  17. timeout 5
  18. wait "ERROR"
  19. delay
  20. ifbrk writeln "Your modem didn't say 'ERROR'"
  21. ifnbrk writeln "Your modem said 'ERROR'"
  22.  
  23. // done
  24. writeln "bye!"
  25. endscript
  26.